home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-10-07 | 440 b | 28 lines |
- #
- LIBS = -lsuntool -lsunwindow -lpixrect
-
- SRCS = gpp.c read.c legend.c doargs.c
-
- OBJS = gpp.o read.o legend.o doargs.o
-
- MCFLAGS = -fsingle -f68881 -g
-
- CFLAGS = $(MCFLAGS) -I../src
-
- all: gpp
-
- gpp: $(OBJS) gpp.h ../src/libvopl.a
- cc $(CFLAGS) -o gpp $(OBJS) ../src/libvopl.a $(WHERELIBS) -lhershey $(LIBS) -lm
-
- $(OBJS): gpp.h
-
- lint: $(SRCS)
- lint -I../vogle/src $(SRCS) > gpp.lint
-
- clean:
- rm -f *.o core
-
- clobber:
- rm -f gpp *.o core
-
-